home *** CD-ROM | disk | FTP | other *** search
/ PC PowerPlay 49 / PCPP49a.iso / editors / sofsdk / SoF SDK.msi / _EC1EFB8B51C54B3FBE341E94F3E00FD9 < prev    next >
Encoding:
Text File  |  2000-03-27  |  1.2 KB  |  48 lines

  1. #include "../common/header.ds"
  2. output "p:/base/ds/tsr1"
  3. #include "tsr1.ds"
  4.  
  5.  
  6.  
  7.  
  8.  
  9. // THE FIRST SOUND CUE FROM HAWK TRIGGERED WHEN THE PLAYER LEAVES THE SUBWAY STATION
  10.  
  11. local entity splayer1 // the player who sets off the trigger
  12. local entity notoken // the clip brush in front of the token booth
  13. local entity scue1b // the relay between the trigger and the script runner so it doesnt get used twice
  14.  
  15. splayer1 = get entity activator
  16. notoken = find entity with targetname "notoken"
  17. scue1b = find entity with targetname "scue1b"
  18.  
  19. // THE WHOLE CONVERSATION EXCHANGE 
  20.  
  21. use entity notoken // should remove the clip brush func wall in the token booth windows
  22.  
  23. play sound "cin/tsr1/s1d1.adp" for entity splayer1 at volume 0.9   // Hawks first call to John
  24.     print TSR1_S1D1
  25.     wait 1.5 seconds 
  26.     // "John do you read" 
  27.  
  28. play sound "cin/tsr1/s1d2.adp" for entity splayer1 at volume 0.9   // johns response
  29.     print TSR1_S1D2
  30.     //" go ahead" 
  31.     wait 1.5 seconds 
  32.  
  33. play sound "cin/tsr1/s1d3.adp" for entity splayer1 at volume 0.9   // hawk saying the info
  34.     print TSR1_S1D3
  35.     // "nypd has a large group ....."
  36.     wait 4 seconds 
  37.  
  38. play sound "cin/tsr1/s1d4.adp" for entity splayer1 at volume 0.9   // roger
  39.     print TSR1_S1D4
  40.  
  41.     // "roger" 
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.